home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Demos / Itchy_3_Germs / Itchy + Scratchy 3 < prev    next >
Text File  |  2001-09-03  |  941b  |  35 lines

  1. ; To install on Hard Disk, make sure you have these 3 files:
  2. ; Disables caches for any CPU faster than 14mhz 68020 (A1200)
  3. ;
  4. ; Itchy + Scratchy 3.info
  5. ; Itchy + Scratchy 3
  6. ; Itchy + Scratchy 3.exe
  7. ;
  8.  
  9. IF NOT EXISTS "Itchy + Scratchy 3.exe"
  10.    echo "WARNING: Can't find Itchy and Scratchy 3.exe "
  11.    echo " "
  12.    assign >NIL: exists "Itchy + Scratchy III:"
  13.    IF WARN
  14.       echo "Insert the Itchy + Scratchy disk, then double click this icon"
  15.       ask "to copy Itchy + Scratchy 3.exe "
  16.    ELSE
  17.       echo "Found ITCHY + SCRATCHY III disk in drive."
  18.       echo "Copying executable file from floppy..."
  19.       copy "Itchy + Scratchy III:Itchy + Scratchy 3.exe" "" COM
  20.       echo " "
  21.       ask "Now close this window and try again."
  22.    ENDIF
  23. ELSE
  24.    IF EXISTS c:cpu
  25.       CPU >NIL: CHECK 68020
  26.       IF WARN
  27.          CPU >NIL: NOCACHE
  28.       ENDIF
  29.    ENDIF
  30.    "Itchy + Scratchy 3.exe" >NIL:
  31.    IF EXISTS c:cpu
  32.       CPU >NIL: CACHE
  33.    ENDIF
  34. ENDIF
  35.